home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / text / hyper / hsc_source.lha / source / hsclib / parse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-14  |  565 b   |  29 lines

  1. /*
  2. ** hsclib/parse.h
  3. **
  4. ** functions for parsing of hsc files
  5. **
  6. */
  7.  
  8. #ifndef HSC_PARSE_H
  9. #define HSC_PARSE_H
  10.  
  11. /*
  12. ** global funcs
  13. */
  14. #ifndef NOEXTERN_HSCLIB_PARSE_H
  15.  
  16. extern BOOL hsc_parse( HSCPRC *hp );
  17. extern BOOL hsc_parse_tag( HSCPRC *hp );
  18. extern BOOL hsc_parse_amp( HSCPRC *hp );
  19. extern BOOL hsc_parse_text( HSCPRC *hp );
  20. extern BOOL hsc_parse_source( HSCPRC *hp );
  21. extern BOOL hsc_parse_end( HSCPRC *hp );
  22. extern BOOL hsc_parse_end_id( HSCPRC *hp );
  23.  
  24. extern VOID remove_ctag( HSCPRC *hp, HSCTAG *tag );
  25.  
  26. #endif /* NOEXTERN_PARSE_H */
  27. #endif /* HSC_PARSE_H */
  28.  
  29.